home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 526-550 / disk_539 / rpn / source / rpn.c < prev    next >
C/C++ Source or Header  |  1992-05-06  |  268b  |  16 lines

  1. /*--------------------------------*
  2.  | File: RPN.c - MLO 900131 V1.00 |
  3.  | This is the RPN main procedure |
  4.  *--------------------------------*/
  5.  
  6. #include "rpn.h"
  7. #include "global.h"
  8. #include "proto.h"
  9.  
  10. void _main()
  11. {
  12.   setup();
  13.   mainloop();
  14.   cleanup(SYS_NORMAL);
  15. }
  16.